home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / dos / memset.S < prev    next >
Encoding:
Text File  |  2004-12-17  |  315 b   |  23 lines

  1. # $Id: memset.S,v 1.2 2004/12/17 10:03:47 hpa Exp $
  2. #
  3. # memset.S
  4. #
  5. # Minimal 16-bit memset() implementation
  6. #
  7.  
  8.     .text
  9.     .code16gcc
  10.     .globl memset
  11.     .type memset, @function
  12. memset:
  13.     cld
  14.     pushw %di
  15.     movw %ax,%di
  16.     movb %dl,%al
  17.     # The third argument is already in %cx
  18.     rep ; stosb
  19.     popw %di
  20.     retl
  21.  
  22.     .size memset,.-memset
  23.